
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
micromark-factory-whitespace
Advanced tools
micromark factory to parse markdown whitespace (found in lots of places)
micromark factory to parse markdown line endings or spaces (found in lots of places).
This package exposes states to parse whitespace.
This package is useful when you are making your own micromark extensions.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install micromark-factory-whitespace
In Deno with esm.sh
:
import {factoryWhitespace} from 'https://esm.sh/micromark-factory-whitespace@1'
In browsers with esm.sh
:
<script type="module">
import {factoryWhitespace} from 'https://esm.sh/micromark-factory-whitespace@1?bundle'
</script>
import {factoryWhitespace} from 'micromark-factory-whitespace'
import {codes} from 'micromark-util-symbol/codes'
import {types} from 'micromark-util-symbol/types'
// A micromark tokenizer that uses the factory:
/**
* @this {TokenizeContext}
* @type {Tokenizer}
*/
function tokenizeTitle(effects, ok, nok) {
return start
/** @type {State} */
function start(code) {
return markdownLineEndingOrSpace(code)
? factoryWhitespace(effects, before)(code)
: nok(code)
}
// …
}
This module exports the identifier
factoryWhitespace
.
There is no default export.
factoryWhitespace(…)
Parse spaces and tabs.
There is no nok
parameter:
ok
will be switched to whether spaces were found
or notmarkdownLineEndingOrSpace(code)
right before using
factoryWhitespace
effects
(Effects
)
— contextok
(State
)
— state switched to when successfulStart state (State
).
This package is fully typed with TypeScript. It exports no additional types.
Projects maintained by the unified collective are compatible with all maintained versions of Node.js. As of now, that is Node.js 16+. Our projects sometimes work with older versions, but this is not guaranteed.
This package works with micromark
version 3+.
This package is safe.
See security.md
in micromark/.github
for how to
submit a security report.
See contributing.md
in micromark/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.
FAQs
micromark factory to parse markdown whitespace (found in lots of places)
The npm package micromark-factory-whitespace receives a total of 6,460,160 weekly downloads. As such, micromark-factory-whitespace popularity was classified as popular.
We found that micromark-factory-whitespace demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.